home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / rsxwdk2s.zip / RSXWDK / LIBSRC / GDI / GDI153.C < prev    next >
C/C++ Source or Header  |  1994-12-19  |  306b  |  16 lines

  1. #define STRICT
  2. #include <windows.h>
  3. #include <sys/rsxw32.h>
  4.  
  5. HDC WINAPI CreateIC (LPCSTR par1, LPCSTR par2, LPCSTR par3, const void FAR* par4)
  6. {
  7.     STACKWORDS(2+2+2+2);
  8.  
  9.     PUSH_LPSTR(par1);
  10.     PUSH_LPSTR(par2);
  11.     PUSH_LPSTR(par3);
  12.     PUSH_LPSTR(par4);
  13.     return WINCALL(153,GDI);
  14. }
  15.  
  16.